home *** CD-ROM | disk | FTP | other *** search
- /* CAMRexx-script for the "Game of Life" with echo */
-
- MakeAlgorithm:
- if plane=0 then
- PLANEALGORITHM moore centers
- if plane=1 then
- PLANEALGORITHM echo center0
- return
-
- MakePlane:
- if plane=0 then; do
- sum8=north+south+west+east+n_west+n_east+s_west+s_east
- if center=0 then; do
- if sum8=3 then SETPLANE on
- else SETPLANE off
- end; else; do;
- if sum8=2 | sum8=3 then SETPLANE on
- else SETPLANE off
- end
- end;
- return
-
-